-
Notifications
You must be signed in to change notification settings - Fork 138
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added support of timestamp/date/time using curly brackets #1894
Added support of timestamp/date/time using curly brackets #1894
Conversation
integ-test/src/test/java/org/opensearch/sql/sql/DateTimeFunctionIT.java
Outdated
Show resolved
Hide resolved
Codecov Report
@@ Coverage Diff @@
## main #1894 +/- ##
=========================================
Coverage 97.39% 97.39%
Complexity 4603 4603
=========================================
Files 401 401
Lines 11397 11397
Branches 835 835
=========================================
Hits 11100 11100
Misses 290 290
Partials 7 7
Flags with carried forward coverage won't be shown. Click here to find out more. |
b05d1b4
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please fix jacoco failures
* added bracketed time/date/timestamp input, tests, and documentation Signed-off-by: Matthew Wells <matthew.wells@improving.com>
Signed-off-by: Matthew Wells <matthew.wells@improving.com>
Signed-off-by: Matthew Wells <matthew.wells@improving.com>
Signed-off-by: Matthew Wells <matthew.wells@improving.com>
b05d1b4
to
25a8c01
Compare
I have rebased my PR so now everything (Except for BWC) works now |
The backport to
To backport manually, run these commands in your terminal: # Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-2.x 2.x
# Navigate to the new working tree
cd .worktrees/backport-2.x
# Create a new branch
git switch --create backport/backport-1894-to-2.x
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 1a7134b79044de655445f2c1e24ec56467544f50
# Push it to GitHub
git push --set-upstream origin backport/backport-1894-to-2.x
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-2.x Then, create a pull request where the |
…-project#1894) * Added support of timestamp/date/time using curly brackets (#297) * added bracketed time/date/timestamp input, tests, and documentation Signed-off-by: Matthew Wells <matthew.wells@improving.com> * improved failing tests Signed-off-by: Matthew Wells <matthew.wells@improving.com> * simplified tests for checking for failure Signed-off-by: Matthew Wells <matthew.wells@improving.com> * fixed redundant tests and improved tests that should fail Signed-off-by: Matthew Wells <matthew.wells@improving.com> --------- Signed-off-by: Matthew Wells <matthew.wells@improving.com> (cherry picked from commit 1a7134b)
… (opensearch-project#1897) Signed-off-by: Yury-Fridlyand <yury.fridlyand@improving.com> Added support of timestamp/date/time using curly brackets (opensearch-project#1894) * Added support of timestamp/date/time using curly brackets (#297) * added bracketed time/date/timestamp input, tests, and documentation Signed-off-by: Matthew Wells <matthew.wells@improving.com> * improved failing tests Signed-off-by: Matthew Wells <matthew.wells@improving.com> * simplified tests for checking for failure Signed-off-by: Matthew Wells <matthew.wells@improving.com> * fixed redundant tests and improved tests that should fail Signed-off-by: Matthew Wells <matthew.wells@improving.com> --------- Signed-off-by: Matthew Wells <matthew.wells@improving.com> Bump bwc version (opensearch-project#1876) Signed-off-by: Vamsi Manohar <reddyvam@amazon.com> Prometheus Query Exemplars (opensearch-project#1782) Signed-off-by: Vamsi Manohar <reddyvam@amazon.com> Adding google code changes for core/src/main/java/org/opensearch/sql/analysis core/src/main/java/org/opensearch/sql/ast core/src/main/java/org/opensearch/sql/data core/src/main/java/org/opensearch/sql/datasource Signed-off-by: Mitchell Gale <Mitchell.Gale@improving.com> Disable checkstyle fore core module and enable spotless check for the files being checked. Signed-off-by: Mitchell Gale <Mitchell.Gale@improving.com> Added back core checkstyle test in sql-test-workflow.yml Signed-off-by: Mitchell Gale <Mitchell.Gale@improving.com> Revert "Prometheus Query Exemplars (opensearch-project#1782)" This reverts commit 430d7a9. Revert "Bump bwc version (opensearch-project#1876)" This reverts commit 501392e. Revert "Added support of timestamp/date/time using curly brackets (opensearch-project#1894)" This reverts commit 1a7134b. Revert "Statically init `typeActionMap` in `OpenSearchExprValueFactory`. (#310) (opensearch-project#1897)" This reverts commit c8d42a7. Revert "Fix create_index/create_index_with_IOException issue caused by OpenSearch PR change (opensearch-project#1899)" This reverts commit 7b932a7.
…-project#1894) * Added support of timestamp/date/time using curly brackets (#297) * added bracketed time/date/timestamp input, tests, and documentation Signed-off-by: Matthew Wells <matthew.wells@improving.com> * improved failing tests Signed-off-by: Matthew Wells <matthew.wells@improving.com> * simplified tests for checking for failure Signed-off-by: Matthew Wells <matthew.wells@improving.com> * fixed redundant tests and improved tests that should fail Signed-off-by: Matthew Wells <matthew.wells@improving.com> --------- Signed-off-by: Matthew Wells <matthew.wells@improving.com> (cherry picked from commit 1a7134b)
… (opensearch-project#1897) Signed-off-by: Yury-Fridlyand <yury.fridlyand@improving.com> Added support of timestamp/date/time using curly brackets (opensearch-project#1894) * Added support of timestamp/date/time using curly brackets (#297) * added bracketed time/date/timestamp input, tests, and documentation Signed-off-by: Matthew Wells <matthew.wells@improving.com> * improved failing tests Signed-off-by: Matthew Wells <matthew.wells@improving.com> * simplified tests for checking for failure Signed-off-by: Matthew Wells <matthew.wells@improving.com> * fixed redundant tests and improved tests that should fail Signed-off-by: Matthew Wells <matthew.wells@improving.com> --------- Signed-off-by: Matthew Wells <matthew.wells@improving.com> Bump bwc version (opensearch-project#1876) Signed-off-by: Vamsi Manohar <reddyvam@amazon.com> Prometheus Query Exemplars (opensearch-project#1782) Signed-off-by: Vamsi Manohar <reddyvam@amazon.com> Adding google code changes for core/src/main/java/org/opensearch/sql/analysis core/src/main/java/org/opensearch/sql/ast core/src/main/java/org/opensearch/sql/data core/src/main/java/org/opensearch/sql/datasource Signed-off-by: Mitchell Gale <Mitchell.Gale@improving.com> Disable checkstyle fore core module and enable spotless check for the files being checked. Signed-off-by: Mitchell Gale <Mitchell.Gale@improving.com> Added back core checkstyle test in sql-test-workflow.yml Signed-off-by: Mitchell Gale <Mitchell.Gale@improving.com> Revert "Prometheus Query Exemplars (opensearch-project#1782)" This reverts commit 430d7a9. Revert "Bump bwc version (opensearch-project#1876)" This reverts commit 501392e. Revert "Added support of timestamp/date/time using curly brackets (opensearch-project#1894)" This reverts commit 1a7134b. Revert "Statically init `typeActionMap` in `OpenSearchExprValueFactory`. (#310) (opensearch-project#1897)" This reverts commit c8d42a7. Revert "Fix create_index/create_index_with_IOException issue caused by OpenSearch PR change (opensearch-project#1899)" This reverts commit 7b932a7. Signed-off-by: Mitchell Gale <Mitchell.Gale@improving.com>
…ets (#1908) * Added support of timestamp/date/time using curly brackets (#1894) * Added support of timestamp/date/time using curly brackets (#297) * added bracketed time/date/timestamp input, tests, and documentation Signed-off-by: Matthew Wells <matthew.wells@improving.com> * improved failing tests Signed-off-by: Matthew Wells <matthew.wells@improving.com> * simplified tests for checking for failure Signed-off-by: Matthew Wells <matthew.wells@improving.com> * fixed redundant tests and improved tests that should fail Signed-off-by: Matthew Wells <matthew.wells@improving.com> --------- Signed-off-by: Matthew Wells <matthew.wells@improving.com> (cherry picked from commit 1a7134b) * fixed bad cherrypick merge conflict Signed-off-by: Matthew Wells <matthew.wells@improving.com> --------- Signed-off-by: Matthew Wells <matthew.wells@improving.com>
…-project#1894) * Added support of timestamp/date/time using curly brackets (#297) * added bracketed time/date/timestamp input, tests, and documentation Signed-off-by: Matthew Wells <matthew.wells@improving.com> * improved failing tests Signed-off-by: Matthew Wells <matthew.wells@improving.com> * simplified tests for checking for failure Signed-off-by: Matthew Wells <matthew.wells@improving.com> * fixed redundant tests and improved tests that should fail Signed-off-by: Matthew Wells <matthew.wells@improving.com> --------- Signed-off-by: Matthew Wells <matthew.wells@improving.com> Signed-off-by: Mitchell Gale <Mitchell.Gale@improving.com>
…-project#1894) * Added support of timestamp/date/time using curly brackets (#297) * added bracketed time/date/timestamp input, tests, and documentation Signed-off-by: Matthew Wells <matthew.wells@improving.com> * improved failing tests Signed-off-by: Matthew Wells <matthew.wells@improving.com> * simplified tests for checking for failure Signed-off-by: Matthew Wells <matthew.wells@improving.com> * fixed redundant tests and improved tests that should fail Signed-off-by: Matthew Wells <matthew.wells@improving.com> --------- Signed-off-by: Matthew Wells <matthew.wells@improving.com> Signed-off-by: Mitchell Gale <Mitchell.Gale@improving.com>
… (opensearch-project#1897) Signed-off-by: Yury-Fridlyand <yury.fridlyand@improving.com> Added support of timestamp/date/time using curly brackets (opensearch-project#1894) * Added support of timestamp/date/time using curly brackets (#297) * added bracketed time/date/timestamp input, tests, and documentation Signed-off-by: Matthew Wells <matthew.wells@improving.com> * improved failing tests Signed-off-by: Matthew Wells <matthew.wells@improving.com> * simplified tests for checking for failure Signed-off-by: Matthew Wells <matthew.wells@improving.com> * fixed redundant tests and improved tests that should fail Signed-off-by: Matthew Wells <matthew.wells@improving.com> --------- Signed-off-by: Matthew Wells <matthew.wells@improving.com> Bump bwc version (opensearch-project#1876) Signed-off-by: Vamsi Manohar <reddyvam@amazon.com> Prometheus Query Exemplars (opensearch-project#1782) Signed-off-by: Vamsi Manohar <reddyvam@amazon.com> Adding google code changes for core/src/main/java/org/opensearch/sql/analysis core/src/main/java/org/opensearch/sql/ast core/src/main/java/org/opensearch/sql/data core/src/main/java/org/opensearch/sql/datasource Signed-off-by: Mitchell Gale <Mitchell.Gale@improving.com> Disable checkstyle fore core module and enable spotless check for the files being checked. Signed-off-by: Mitchell Gale <Mitchell.Gale@improving.com> Added back core checkstyle test in sql-test-workflow.yml Signed-off-by: Mitchell Gale <Mitchell.Gale@improving.com> Revert "Prometheus Query Exemplars (opensearch-project#1782)" This reverts commit 430d7a9. Revert "Bump bwc version (opensearch-project#1876)" This reverts commit 501392e. Revert "Added support of timestamp/date/time using curly brackets (opensearch-project#1894)" This reverts commit 1a7134b. Revert "Statically init `typeActionMap` in `OpenSearchExprValueFactory`. (#310) (opensearch-project#1897)" This reverts commit c8d42a7. Revert "Fix create_index/create_index_with_IOException issue caused by OpenSearch PR change (opensearch-project#1899)" This reverts commit 7b932a7. Signed-off-by: Mitchell Gale <Mitchell.Gale@improving.com>
Description
Added support for using timestamp/date/time using curly brackets in the following ways to fix failing date filters in PowerBI:
Issues Resolved
#364
Check List
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.